home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / sbin / pm-powersave < prev    next >
Text File  |  2008-10-15  |  1KB  |  37 lines

  1. #!/bin/sh
  2. # vim:noexpandtab
  3. # Simple powersave script
  4. #
  5. # Copyright 2006 Red Hat, Inc.
  6. #
  7. # Based on work from:
  8. #    Bill Nottingham <notting@redhat.com>
  9. #    Peter Jones <pjones@redhat.com>
  10. #    David Zeuthen <davidz@redhat.com>
  11. #    Richard Hughes <richard@hughsie.com>
  12. #
  13. # This program is free software; you can redistribute it and/or modify
  14. # it under the terms of version 2 of the GNU General Public License as
  15. # published by the Free Software Foundation.
  16. #
  17. # This program is distributed in the hope that it will be useful,
  18. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20. # GNU General Public License for more details.
  21. #
  22. # You should have received a copy of the GNU General Public License
  23. # along with this program; if not, write to the Free Software
  24. # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  25. #
  26.  
  27. POWERSAVE_LOGFILE="/dev/null"
  28. . "/usr/lib/pm-utils/pm-functions"
  29.  
  30. if [ "$1" = "true" -o "$1" = "false" ] ; then
  31.     init_logfile "${POWERSAVE_LOGFILE}"
  32.     run_hooks power "$1"
  33. else
  34.     echo "Argument needs to be true or false" >&2
  35.     exit 1
  36. fi
  37.